home *** CD-ROM | disk | FTP | other *** search
- /* -------------------------------------------------------------------
-
- Project:
-
- Objective-C interface file for the class IBAction
-
- COPYRIGHT (C), 1995, Thomas Baier
- ALL RIGHTS RESERVED.
-
- Date: Rev:
- 1995-Aug-28 ___
-
- */
-
- #ifndef _IBACTION_H_
- #define _IBACTION_H_
-
- /*====================================================================
- Interface of class IBAction
- ====================================================================*/
- #include <pm/IBOutlet.h>
-
- @interface IBAction : IBOutlet
- {
- char *targetAction;
- }
-
- /* -------------------------- Initialize -------------------------- */
- -init;
-
- /* ----------------------------- Free ----------------------------- */
- -free;
-
- /* ----------- Methods for access to Instance Variables ----------- */
- -(char *) targetAction;
- -setTargetAction: (char *) anAction;
-
- /* ------------------------ Public methods ------------------------ */
-
- /* ----------------------- Private methods ------------------------ */
-
- /* ---------------------- Archiving methods ----------------------- */
- -read: (TypedStream *) aStream;
- -write: (TypedStream *) aStream;
-
- @end
- #endif
-
-